home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 240 (DVD) / Issue 240 - February 2008 - DPCS0208DVD.ISO / Mag / Programming Expert / Code.exe / Code / helloworld / content / firefoxOverlay.xul next >
Encoding:
Extensible Markup Language  |  2007-11-01  |  596 b   |  21 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!DOCTYPE overlay SYSTEM "chrome://helloworld/locale/helloworld.dtd">
  4. <overlay id="helloworld-overlay"
  5.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  6. <script src="overlay.js"/>
  7.   
  8.  
  9.     <menupopup id="menu_ToolsPopup">
  10.             <menuitem id="helloworld-hello" label="Helloworld" 
  11.                       oncommand="helloworld.onMenuItemCommand();"/>
  12.       </menupopup>
  13.  
  14.     <statusbar id="status-bar">
  15.         <statusbarpanel id="helloworld-statusHelloworld" 
  16.             label="Hello World">
  17.         </statusbarpanel>
  18.      </statusbar>
  19.  
  20. </overlay>
  21.